| CountTestCases method |
Applies to
TTestDecorator
Declaration
Function CountTestCases: integer;
Implementation
function TTestDecorator.CountTestCases: integer;
begin
if Enabled then
Result := FTest.countTestCases
else
Result := 0;
End; |
|
|